home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970326-19970626 / 000106_news@columbia.edu _Mon Apr 21 12:01:15 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id MAA09135
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Mon, 21 Apr 1997 12:01:15 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id MAA05115
  7.     for kermit.misc@watsun; Mon, 21 Apr 1997 12:01:15 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: Faster downloading.
  12. Date: 21 Apr 1997 16:01:13 GMT
  13. Organization: Columbia University
  14. Lines: 64
  15. Message-ID: <5jg309$jjt$1@apakabar.cc.columbia.edu>
  16. References: <Pine.SUN.3.91.970421003158.25277B-100000@monroe.lib.mi.us>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:6924
  19.  
  20. In article <Pine.SUN.3.91.970421003158.25277B-100000@monroe.lib.mi.us>,
  21. Jason \"PsychoSy\" Sizemore <jsizemor@monroe.lib.mi.us> wrote:
  22. : These are the settings I use when using MS-Kermit 3.15 Beta.
  23. : SET PORT 2
  24. : SET SPE 576
  25. : SET FLO RTS/CTS
  26. : SET WIN 4
  27. : SET TERM BY 8
  28. : SET FI TY BIN
  29. : SET SEN PACK 9024
  30. : SET REC PACK 9024
  31. : SET BLO 2
  32. : SET TERM AUTO ON
  33. : SET TERM VT102
  34. : CONNECT
  35. : Now, with these settings, I usually use the Public Lynx Acces at Sailor 
  36. : library in Maryland <sailor.lib.md.us -- login as "guest"> and perform my 
  37. : downloading from there. I get the 9024 packet length, but after the 
  38. : downloading, the percentage at the end is always in the teens. 
  39. Sailor is evidently using an old version of C-Kermit, as revealed in a 
  40. packet log taken by MS-DOS Kermit:
  41.  
  42.   Rpack: ^A0 Sz* @-#Y1~N! z(^M          <-- Sailor sends
  43.   Spack: ^A7 Y~( @-#&1~^!5% ___F!0*^M   <-- MS-DOS Kermit replies
  44.  
  45. This is the parameter exchange.  A modern version of C-Kermit would have a
  46. parameter string the same length as MS-DOS Kermit 3.15.
  47.  
  48. Sailor says "1 window slot", and this overrides your "SET WIN 4" command
  49. because negotiations always settle on the lowest window size announced by
  50. the two Kermits.  However, the log also reveals that it is sending rather
  51. long packets.  So my guess is that they have C-Kermit 5A(188) or 5A(189),
  52. since previous releases could not send packets longer than about 2K.
  53.  
  54. The current release of C-Kermit is 6.0:
  55.  
  56.   http://www.columbia.edu/kermit/ck60.html
  57.  
  58. You should ask the people at Sailor to install the current version and
  59. configure it for a larger window size, maybe 8 or more, by adding "set
  60. window 8" to their C-Kermit initialization file.
  61.  
  62. This might or might not improve matters.  I noticed when logged in to Sailor
  63. that packets arrived in jerks and spurts.  So the real culprit might be the
  64. load on the Sailor system itself, or its local area network, or the terminal
  65. server you are dialing in to, if any.
  66.  
  67. : It takes about 30 minutes to download a 1MB file or program. My own ISP 
  68. : uses C-Kermit but the max packet size I can get from that is 2050. 
  69. This indicates that your ISP is running a pre-1992 version of C-Kermit.  Ask
  70. them to install the current version.
  71.  
  72. : Also, on my own ISP, I don't get the "bar graph" when downloading. I 
  73. : always get this when downloading from Sailor. Why is that??
  74. This indicates that their version of C-Kermit goes back to the 1985-87 era.
  75. Again, ask them to upgrade.
  76.  
  77. - Frank